@charset "UTF-8";
/*-----------------------------------------------
トップページ用CSS
-----------------------------------------------*/
body {
	color: #151515;
	background: #fff;
}

i.fa {
	font-size: 1.1em;
	vertical-align: 1px;
	margin-right: 5px;
}
i.fa.fa-volume-control-phone {
	font-size: 1.2em;
}

/* Header 
============================== */
#header {
	position: relative;
	padding: 0 !important;
	/*overflow: hidden;*/
}
header h1,
header .inner {
	position: absolute;
	z-index: 2;
}
header h1 {
	width: 438px;
	max-width: 85%;
	height: 66px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	padding-top: 45px;
}
header .inner {
	width: 95%;
	max-width: 1400px;
	top: 40px;
	left: 0;
	right: 0;
	margin: auto;
}

header #g_nav {
	float: left;
}
header .contacts {
	float: right;
}

header .nav li {
	float: left;
	color: #fff;
	font-size: 1.125em;
}
header .nav li + li {
	margin-left: 2em;
}
header .nav li#menu-item-32 {
	margin-left: 0;
}
header .nav li#menu-item-33 {
	display: none;
}
header .nav li a {
	color: #fff;
}
header .nav li.current-menu-item a {
	text-decoration: underline;
}

#header .nav_toggle {
	color: #fff;
}

.bg-slider {
	position: relative;
	height: 56.5vw;
	max-height: 100vh;
	margin-top: 0 !important;
}
.bg-slider .slide {
	position: absolute;
	left: 0;
	top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.bg-slider .slide:not(:first-child) {
  display: none;
}

@media(max-width: 1195px) {
	header .contacts {
		text-align: right;
	}
	header .contacts li {
		float: none;
	}
	header .contacts li + li {
		margin-left: 0;
		margin-top: 5px;
	}
}

@media(max-width: 991px) {
	header .inner {
		width: 100%;
		top: 0;
		z-index: 90;
	}
	header #g_nav {
		display: none;
		float: none;
		position: absolute;
		width: 100%;
	}
	header #g_nav ul {
		background: rgba(43,23,4,.95);
		padding: 1em 0;
	}
	header #g_nav li {
		float: none;
		text-align: center;
	}
	header #g_nav li + li {
		margin-left: 0;
	}
	header #g_nav li a {
		display: block;
		padding: 1em;
	}
	header #g_nav li a:hover {
		text-decoration: underline;
	}
	header .contacts {
		padding: 15px 15px 0 0 ;
	}

	.bg-slider {
		height: 81.8vw;
	}
}

@media(max-width: 650px) {
	header h1 {
		padding-top: 25px;
	}
}

/* Footer 
============================== */
.footer-02 {
	border: none;
}
#footer .wrap {
	width: 100%;
	background-color: #90713b;
	color: #fff;
	padding: 1em;
	margin: 0;
}

/* コンテンツ 
============================== */
#content {
	padding: 0;
}
#main {
	float: none;
}
.main-inner {
  width: 100%;
  max-width: 1220px;
  padding: 0 10px;
  margin: 0 auto;
}

/* メインメニュー 
============================== */
.main_menu {
	padding-top: 80px;
	margin-bottom: 40px;
}
.main_menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.main_menu li {
	position: relative;
	width: calc(50% - 20px);
	margin-bottom: 40px;
}
.main_menu li a {
	text-align: center;
	color: #49330c;
	font-size: 2em;
	font-weight: bold;
	line-height: 1.5em;
}
.main_menu li a:hover {
	opacity: .7;
}
.main_menu li a:after {
	content: '';
	display: block;
	position: absolute;
	width: 80%;
	max-width: 320px;
	height: 80%;
	max-height: 260px;
	background-color: rgba(255,255,255,.45);
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}
.main_menu li a img {
	width: 100%;
}
.main_menu li a h2 {
	position: absolute;
	width: 100%;
	top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

@media(max-width: 980px) {
	.main_menu li {
		width: calc(50% - 15px);
		margin-bottom: 30px;
	}
}
@media(max-width: 860px) {
	.main_menu li {
		width: calc(50% - 10px);
		margin-bottom: 20px;
	}
}
@media(max-width: 768px) {
	.main_menu li a:after {
		height: 90%;
	}
}
@media(max-width: 700px) {
	.main_menu ul {
		display: block;
	}
	.main_menu li {
		width: 100%;
		margin-bottom: 25px;
	}
	.main_menu li a:after {
		max-width: 80%;
		max-height: 80%;
	}
}
@media(max-width: 480px) {
	.main_menu li a {
		line-height: 1.4em;
	}
}
@media(max-width: 374px) {
	.main_menu li {
		margin-bottom: 15px;
	}
	.main_menu li a {
		font-size: 1.8em;
		line-height: 1.3em;
	}
}

/* サブメニュー 
============================== */
.sub_menu {
	background-color: #f1e8d9;
	padding: 60px 0 20px;
}
.sub_menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}
.sub_menu li {
	justify-content: center;
  width: calc(25% - 30px);
  height: auto;
  position: relative;
  margin-bottom: 30px;
}
.sub_menu li:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.sub_menu li a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 1.65em;
  line-height: 1.6em;
  background-color: #9d7f4a;
}
.sub_menu li a:hover {
	cursor: pointer;
	text-decoration: none;
	background-color: #826126;
}


.sub_menu li:nth-last-child(4) a {
	background-color: #3c9e20;
}
.sub_menu li:nth-last-child(4) a:hover {
	opacity: .65;
}

.sub_menu li:nth-last-child(3) a {
	background-color: #fff;
	color:#333;
}
.sub_menu li:nth-last-child(3) a:hover {
	opacity: .65;
}

.sub_menu li:nth-last-child(2) a {
	background-color: #504f48;
}
.sub_menu li:nth-last-child(2) a:hover {
	background-color: #919191;
}

.sub_menu li:last-child a {
	background-color: #4773e1;
}
.sub_menu li:last-child a:hover {
	opacity: .65;
}



.sub_menu li a span.caption {
	display: table-cell;
  vertical-align: middle;
  padding: 0 5px;
}
.sub_menu li a .b {
	display: none;
}
.sp_iblock {
	display: none;
}

@media(max-width: 1195px) {
	.sub_menu li {
  	width: calc(25% - 20px);
  	margin-bottom: 20px;
 	}
	.sub_menu li a .n {
		display: none;
	}
	.sub_menu li a .b {
		display: block;
	}
}
@media(max-width: 980px) {
	.sub_menu li {
  	width: calc(25% - 15px);
  	margin-bottom: 15px;
 	}
 	.sub_menu li a {
 		font-size: 1.5em;
 	}
}
@media(max-width: 860px) {
	.sub_menu li {
  	width: calc(33.3333% - 15px);
  	margin-bottom: 20px;
 	}
 	.sub_menu li a {
 		font-size: 1.65em;
 	}
}
@media(max-width: 700px) {
	.sub_menu li {
  	width: calc(50% - 15px);
 	}
}
@media(max-width: 600px) {
	.sub_menu li {
  	width: calc(50% - 10px);
 	}
}
@media(max-width: 480px) {
	.sub_menu ul {
		/*display: block;*/
	}
	.sub_menu li {
		width: 100%;
	}
	.sub_menu li:before {
		display: none;
	}
	.sub_menu li a {
		height: 6em;
		position: relative;
	}
	.sp_none,
	.sub_menu li a .b {
		display: none;
	}
	.sp_iblock,
	.sub_menu li a .n {
		display: inline-block;
	}
}
@media(max-width: 374px) {
	.sub_menu li a {
		font-size: 1.4em;
	}
}

/* その他メニュー 
============================== */
.other_menu {
	text-align: center;
	margin-top: 80px;
	margin-bottom: 80px;
}
.other_menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.other_menu li {
  width: calc(50% - 20px);
  height: auto;
  position: relative;
  margin-bottom: 40px;
}
.other_menu a {
	display: block;
	background-color: #ead8b9;
	color: #49330c;
	line-height: 100px;
	border-radius: 4px;
	font-weight: bold;
	font-size: 1.7em;
}
.other_menu a:hover {
	background-color: #e3ba73;
	text-decoration: none;
}




.other_menu li:last-child a {
	background-color: #e63d21;
	color: #fff;
}
.other_menu li:last-child a:hover {
	background-color: #da1006;
}



.other_menu li:nth-last-child(2) a {
	background-color: #504f48;
	color: #fff;
}
.other_menu li:nth-last-child(2) a:hover {
	background-color: #919191;
}

.other_menu a.contact {
	background-color: #ffc654;
	/*font-size: 2.35em;*/
}
.other_menu a.contact:hover {
	background-color: #f1a437;
}
.other_menu a.contact br {
	display: none;
}
.other_menu p {
	font-size: 1.25em;
	padding: 20px 0 10px;
}

@media(max-width: 980px) {
	.other_menu li {
		width: calc(50% - 15px);
		margin-bottom: 30px;
	}
}
@media(max-width: 860px) {
	.other_menu li {
		width: calc(50% - 10px);
		margin-bottom: 20px;
	}
}
@media(max-width: 499px) {
	.other_menu ul {
		display: block;
	}
	.other_menu li {
		width: 100%;
	}	
}
@media(max-width: 374px) { 
	.other_menu a.contact {
		line-height: 1em;
		padding: .7em 0 .65em;
	}
	.other_menu a.contact br {
		display: block;
	}
}

/* 新着情報 
============================== */
.news {
	background-color: #f7f7f7;
	padding: 40px 0;
}
.news a:hover {
	text-decoration: none;
	opacity: .7;
}
.news .title {
	float: left;
	width: 19%;
}
.news .news_content {
	float: left;
	width: 81%;
}

.news .title h3 {
	font-weight: bold;
	font-size: 1.75em;
	color: #49330c;
	margin-bottom: 30px;
}
.news .title a {
	display: inline-block;
	color: #49330c;
	font-weight: bold;
	font-size: 1.0625em;
	border-bottom: solid 1px #49330c;
	padding-bottom: 2px;
}
.news .title a i {
	font-size: .8em;
}

.news article {
	border-bottom: solid 1px #dfdcd8;
	padding-bottom: 8px;
}
.news article + article {
	margin-top: 16px;
}
.news article p.time {
	font-size: .9375em;
	color: #827660;
	line-height: 1.2em;
}
.news article p.news_title {
	font-size: 1.25em;
	line-height: 1.5em;
}
.news article p.news_title a {
	color: #36260a;
}

@media (max-width: 768px) {
	.news .title,
	.news .news_content {
		position: relative;
		float: none;
		width: 100%;
	}
	.news .title a {
		position: absolute;
		top: 8px;
		right: 0;
	}

}

/* 会社概要 
============================== */
.info {
	text-align: center;
	margin-top: 60px;
	margin-bottom: 15px;
}
.info h4 {
	font-size: 1.125em;
	font-weight: bold;
	margin-bottom: 20px;
}
.info .contact {
	margin: 20px 0 15px;
}
.info li {
	display: inline-block;
}
.info .contact li + li {
	margin-left: 25px;
}
.info .sns li + li {
	margin-left: 10px;
}
.info .sns i.fa {
	margin-right: 0;
}
.info .contact li a {
	color: #151515;
	font-size: 1.25em;
	font-weight: bold;
}
.info .sns li a {
	color: #c6c6c6;
	font-size: 1.5em;
}
.info .sns li a:hover {
	color: #57585a;
}

@media(max-width: 450px) {
	.info .contact li {
		display: block;
	}
	.info .contact li + li {
		margin-left: 0;
		margin-top: 10px;
	}
} 



/* 全体余白 
============================== */
@media(max-width: 980px) {
	.main_menu {
		padding-top: 5%;
		margin-bottom: 2.5%;
	}
	.sub_menu {
		padding: 4% 0 2%;
	}
	.other_menu {
		margin: 6% auto;
	}
	.info {
		margin-top: 4%;
	}
}

@media(max-width: 600px) {
	.main_menu { 
		margin-bottom: 10%;
	}
	.other_menu {
		margin: 10% auto 12%;
	}
	.news {
		padding: 6% 0 7.5%;
	}
	.info {
		margin-top: 9%;
	}
}
/*
     FILE ARCHIVED ON 15:29:02 Jan 27, 2022 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 12:58:36 Jul 29, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.674
  exclusion.robots: 0.134
  exclusion.robots.policy: 0.119
  esindex: 0.012
  cdx.remote: 22.875
  LoadShardBlock: 301.187 (3)
  PetaboxLoader3.resolve: 330.142 (4)
  PetaboxLoader3.datanode: 141.885 (4)
  load_resource: 226.98
*/